projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b023994
)
Increase the obarray size.
author
Ken Raeburn
<raeburn@raeburn.org>
Fri, 30 Dec 2016 22:41:26 +0000
(17:41 -0500)
committer
Ken Raeburn
<raeburn@raeburn.org>
Fri, 30 Dec 2016 22:41:26 +0000
(17:41 -0500)
In a typical GNU/Linux/X11 build, we wind up with over 15k symbols by
the time we've started. The old obarray size ensured an average chain
length of 10 or more.
* src/lread.c (OBARRAY_SIZE): Increase to 15121.
src/lread.c
patch
|
blob
|
history
diff --git
a/src/lread.c
b/src/lread.c
index 35348f1ddb8f8952cf86a29fe0a19c233f0a1302..6005a7ce2d29a5867cb592d56f7f5329e55722ef 100644
(file)
--- a/
src/lread.c
+++ b/
src/lread.c
@@
-4116,7
+4116,7
@@
OBARRAY defaults to the value of `obarray'. */)
return Qnil;
}
-#define OBARRAY_SIZE 1511
+#define OBARRAY_SIZE 151
2
1
void
init_obarray (void)